home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / hm510 / header~1.hm_ / header~1.hm
Encoding:
Text File  |  1998-11-23  |  1.5 KB  |  44 lines

  1. '------------------------------------------------------------------------
  2. 'Description:   
  3. '
  4. 'Created by:    ½Prog╗
  5. 'Created on:    ½Date╗
  6. '
  7. 'Sections:      1. Variables declarations
  8. '               2. Main section
  9. '               3. Error trapping section
  10. '
  11. 'Input:         Variable            Type        Description
  12. '               »»»»»»»»            »»»»        »»»»»»»»»»»
  13. '
  14. '
  15. 'Output:        Variable            Type        Description
  16. '               »»»»»»»»            »»»»        »»»»»»»»»»»
  17. '
  18. '
  19. 'Modification:  Date        Programmer          Description
  20. '               »»»»        »»»»»»»»»»          »»»»»»»»»»»
  21. '
  22. '------------------------------------------------------------------------
  23.     On Error GoTo Err_½Proc╗
  24.  
  25. '------------------------------------------------------------------------
  26. ' 1. Variables declarations    
  27. '------------------------------------------------------------------------
  28.  
  29.  
  30. '------------------------------------------------------------------------
  31. ' 2. Main section
  32. '------------------------------------------------------------------------
  33.  
  34. Exit_½Proc╗:
  35.     Exit ½Type╗
  36.  
  37. '------------------------------------------------------------------------
  38. ' 3. Error trapping section
  39. '------------------------------------------------------------------------
  40. Err_½Proc╗:
  41.     MsgBox "Error #" & Err.Number _
  42.     & " in " & Me.Name & ".½Proc╗" _
  43.     & vbCrLf & vbCrLf & "Description: " & Err.Description
  44.     Resume Exit_½Proc╗